home *** CD-ROM | disk | FTP | other *** search
/ Risc World 3 / Risc World 3.iso / SOFTWARE / ISSUE3 / PD / VICE / doc / vice_11 < prev    next >
Text File  |  2002-09-01  |  18KB  |  619 lines

  1. <HTML>
  2. <HEAD>
  3. <!-- This HTML file has been created by texi2html 1.52
  4.      from ../vice.texi on 31 August 2002 -->
  5.  
  6. <TITLE>VICE Manual - 11  The emulator file formats</TITLE>
  7. </HEAD>
  8. <BODY>
  9. Go to the <A HREF="vice_1.html">first</A>, <A HREF="vice_10.html">previous</A>, <A HREF="vice_12.html">next</A>, <A HREF="vice_16.html">last</A> section, <A HREF="vice_toc.html">table of contents</A>.
  10. <P><HR><P>
  11.  
  12.  
  13. <H1><A NAME="SEC152" HREF="vice_toc.html#TOC152">11  The emulator file formats</A></H1>
  14.  
  15. <P>
  16. This chapter gives a technical description of the various files
  17. supported by the emulators.
  18.  
  19. </P>
  20.  
  21.  
  22.  
  23. <H2><A NAME="SEC153" HREF="vice_toc.html#TOC153">11.1  The T64 tape image format</A></H2>
  24.  
  25. <P>
  26. (This section was taken from the C64S distribution.)
  27.  
  28. </P>
  29. <P>
  30. The <CODE>T64</CODE> File Structure was developed by Miha Peternel for use in
  31. the C64S emulator.  It is easy to use and allows future extensions.
  32.  
  33. </P>
  34.  
  35.  
  36.  
  37. <H3><A NAME="SEC154" HREF="vice_toc.html#TOC154">11.1.1  T64 File structure</A></H3>
  38.  
  39. <TABLE BORDER>
  40.  
  41. <TR><TD><B>Offset</B></TD>
  42.  
  43. <TD><B>Size</B></TD>
  44. <TD><B>Description</B></TD>
  45. </TR>
  46. <TR><TD>0</TD>
  47.  
  48. <TD>64</TD>
  49. <TD>tape record</TD>
  50. </TR>
  51. <TR><TD>64</TD>
  52.  
  53. <TD>32*n</TD>
  54. <TD>file records for n directory entries</TD>
  55. </TR>
  56. <TR><TD>64+32*n</TD>
  57.  
  58. <TD>varies</TD>
  59. <TD>binary contents of the files</TD>
  60. </TR></TABLE>
  61.  
  62.  
  63.  
  64. <H3><A NAME="SEC155" HREF="vice_toc.html#TOC155">11.1.2  Tape Record</A></H3>
  65.  
  66. <TABLE BORDER>
  67.  
  68. <TR><TD><B>Offset</B></TD>
  69.  
  70. <TD><B>Size</B></TD>
  71. <TD><B>Description</B></TD>
  72. </TR>
  73. <TR><TD>0</TD>
  74.  
  75. <TD>32</TD>
  76. <TD>DOS tape description + EOF (for type)</TD>
  77. </TR>
  78. <TR><TD>32</TD>
  79.  
  80. <TD>2</TD>
  81. <TD>tape version ($0200)</TD>
  82. </TR>
  83. <TR><TD>34</TD>
  84.  
  85. <TD>2</TD>
  86. <TD>number of directory entries</TD>
  87. </TR>
  88. <TR><TD>36</TD>
  89.  
  90. <TD>2</TD>
  91. <TD>number of used entries (can be 0 in my loader)</TD>
  92. </TR>
  93. <TR><TD>38</TD>
  94.  
  95. <TD>2</TD>
  96. <TD>free</TD>
  97. </TR>
  98. <TR><TD>40</TD>
  99.  
  100. <TD>24</TD>
  101. <TD>user description as displayed in tape menu</TD>
  102. </TR></TABLE>
  103.  
  104.  
  105.  
  106. <H3><A NAME="SEC156" HREF="vice_toc.html#TOC156">11.1.3  File record</A></H3>
  107.  
  108. <TABLE BORDER>
  109.  
  110. <TR><TD><B>Offset</B></TD>
  111.  
  112. <TD><B>Size</B></TD>
  113. <TD><B>Description</B></TD>
  114. </TR>
  115. <TR><TD>0</TD>
  116.  
  117. <TD>1</TD>
  118. <TD>entry type (see below)</TD>
  119. </TR>
  120. <TR><TD>1</TD>
  121.  
  122. <TD>1</TD>
  123. <TD>C64 file type</TD>
  124. </TR>
  125. <TR><TD>2</TD>
  126.  
  127. <TD>2</TD>
  128. <TD>start address</TD>
  129. </TR>
  130. <TR><TD>4</TD>
  131.  
  132. <TD>2</TD>
  133. <TD>end address</TD>
  134. </TR>
  135. <TR><TD>6</TD>
  136.  
  137. <TD>2</TD>
  138. <TD>free</TD>
  139. </TR>
  140. <TR><TD>8</TD>
  141.  
  142. <TD>4</TD>
  143. <TD>offset of file contents start within T64 file</TD>
  144. </TR>
  145. <TR><TD>12</TD>
  146.  
  147. <TD>4</TD>
  148. <TD>free</TD>
  149. </TR>
  150. <TR><TD>16</TD>
  151.  
  152. <TD>16</TD>
  153. <TD>C64 file name</TD>
  154. </TR></TABLE>
  155.  
  156. <P>
  157. Valid entry types are:
  158.  
  159. </P>
  160. <TABLE BORDER>
  161.  
  162. <TR><TD><B>Code</B></TD>
  163.  
  164. <TD><B>Explanation</B></TD>
  165. </TR>
  166. <TR><TD><CODE>0</CODE></TD>
  167.  
  168. <TD>free entry</TD>
  169. </TR>
  170. <TR><TD><CODE>1</CODE></TD>
  171.  
  172. <TD>normal tape file</TD>
  173. </TR>
  174. <TR><TD><CODE>2</CODE></TD>
  175.  
  176. <TD>tape file with header: header is saved just before file data</TD>
  177. </TR>
  178. <TR><TD><CODE>3</CODE></TD>
  179.  
  180. <TD>memory snapshot v0.9, uncompressed</TD>
  181. </TR>
  182. <TR><TD><CODE>4</CODE></TD>
  183.  
  184. <TD>tape block</TD>
  185. </TR>
  186. <TR><TD><CODE>5</CODE></TD>
  187.  
  188. <TD>digitized stream</TD>
  189. </TR>
  190. <TR><TD><CODE>6</CODE> ... <CODE>255</CODE></TD>
  191.  
  192. <TD>reserved</TD>
  193. </TR></TABLE>
  194.  
  195. <P>
  196. Notes:
  197.  
  198. </P>
  199.  
  200. <UL>
  201. <LI>VICE only supports file type <CODE>1</CODE>.
  202.  
  203. <LI>Types <CODE>3</CODE>, <CODE>4</CODE> and <CODE>5</CODE> are subject to change (and
  204.  
  205. are rarely  used).
  206. </UL>
  207.  
  208.  
  209.  
  210. <H2><A NAME="SEC157" HREF="vice_toc.html#TOC157">11.2  The G64 GCR-encoded disk image format</A></H2>
  211.  
  212. <P>
  213. (This section was contributed by Peter Schepers
  214. (<A HREF="mailto:schepers@ist.uwaterloo.ca">schepers@ist.uwaterloo.ca</A>) and slightly edited by Ettore
  215. Perazzoli (<A HREF="mailto:ettore@comm2000.it">ettore@comm2000.it</A>).)
  216.  
  217. </P>
  218. <P>
  219. This format was defined in 1998 as a cooperative effort between several
  220. emulator people, mainly Per Håkan Sundell, author of the CCS64 C64
  221. emulator, Andreas Boose of the VICE CBM emulator team and Joe
  222. Forster/STA, the author of Star Commander.  It was the first real public
  223. attempt to create a format for the emulator community which removed
  224. almost all of the drawbacks of the other existing image formats, namely
  225. <CODE>D64</CODE>.
  226.  
  227. </P>
  228. <P>
  229. The intention behind <CODE>G64</CODE> is not to replace the widely used
  230. <CODE>D64</CODE> format, as <CODE>D64</CODE> works fine with the vast majority of
  231. disks in existence.  It is intended for those small percentage of
  232. programs which demand to work with the 1541 drive in a non-standard way,
  233. such as reading or writing data in a custom format.  The best example is
  234. with speeder software such as Action Cartridge in Warp Save mode or
  235. Vorpal which write track/sector data in another format other than
  236. standard GCR.  The other obvious example is copy-protected software
  237. which looks for some specific data on a track, like the disk ID, which
  238. is not stored in a standard <CODE>D64</CODE> image.
  239.  
  240. </P>
  241. <P>
  242. <CODE>G64</CODE> has a deceptively simply layout for what it is capable of
  243. doing.  We have a signature, version byte, some predefined size values,
  244. and a series of offsets to the track data and speed zones.  It is what's
  245. contained in the track data areas and speed zones which is really at the
  246. heart of this format.
  247.  
  248. </P>
  249. <P>
  250. Each track entry in simply the raw stream of GCR data, just what a read
  251. head would see when a diskette is rotating past it.  How the data gets
  252. interpreted is up to the program trying to access the disk.  Because the
  253. data is stored in such a low-level manner, just about anything can be
  254. done.  Most of the time I would suspect the data in the track would be
  255. standard sectors, with SYNC, GAP, header, data and checksums.  The
  256. arrangement of the data when it is in a standard GCR sector layout is
  257. beyond the scope of this document.
  258.  
  259. </P>
  260. <P>
  261. Since it is a flexible format in both track count and track byte size,
  262. there is no "standard" file size.  However, given a few constants like
  263. 42 tracks and halftracks, a track size of 7928 bytes and no speed offset
  264. entries, the typical file size will a minimum of 333744 bytes.
  265.  
  266. </P>
  267. <P>
  268. Below is a dump of the header, broken down into its various parts.
  269. After that will be an explanation of the track offset and speed zone
  270. offset areas, as they demand much more explanation.
  271.  
  272. </P>
  273.  
  274. <PRE>
  275. Addr  00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
  276. ----  -----------------------------------------------
  277. 0000: 47 43 52 2D 31 35 34 31 00 54 F8 1E .. .. .. ..
  278. </PRE>
  279.  
  280. <TABLE BORDER>
  281.  
  282. <TR><TD><B>Offset</B></TD>
  283.  
  284. <TD><B>Description</B></TD>
  285. </TR>
  286. <TR><TD>$0000-0007</TD>
  287.  
  288. <TD>File signature (<CODE>GCR-1541</CODE>)</TD>
  289. </TR>
  290. <TR><TD>$0008</TD>
  291.  
  292. <TD><CODE>G64</CODE> version (presently only $00 defined)</TD>
  293. </TR>
  294. <TR><TD>$0009</TD>
  295.  
  296. <TD>Number of tracks in image (usually $54, decimal 84)</TD>
  297. </TR>
  298. <TR><TD>$000A-000B</TD>
  299.  
  300. <TD>Size of each stored track in bytes (usually 7928, or $1EF8) in LO/HI format.</TD>
  301. </TR></TABLE>
  302.  
  303. <P>
  304. An obvious question here is "why are there 84 tracks defined when a
  305. normal <CODE>D64</CODE> disk only has 35 tracks?"  Well, by definition, this
  306. image includes all half-tracks, so there are actually 42 tracks and 42
  307. half tracks.  The 1541 stepper motor can access up to 42 tracks and the
  308. in-between half-tracks.  Even though using more than 35 tracks is not
  309. typical, it was important to define this format from the start with what
  310. the 1541 is capable of doing, and not just what it typically does.
  311.  
  312. </P>
  313. <P>
  314. At first, the defined track size value of 7928 bytes may seem to be
  315. arbitrary, but it is not.  It is determined by the fastest write speed
  316. possible (speed zone 0), coupled with the average rotation speed of the
  317. disk (300 rpm).  After some math, the answer that actually comes up is
  318. 7692 bytes.  Why the discrepency between the actual size of 7692 and the
  319. defined size of 7928? Simply put, not all drives rotate at 300 rpm.
  320. Some can be faster or slower, so a upper safety margin of +3% was built
  321. added, in case some disks rotate slower and can write more data.  After
  322. applying this safety factor, and some rounding-up, 7928 bytes per track
  323. was arrived at.
  324.  
  325. </P>
  326. <P>
  327. Also note that this upper limit of 7928 bytes per track really only
  328. applies to 1541 and compatible disks.  If this format were applied to
  329. another disk type like the SFD1001, this value would be higher.
  330.  
  331. </P>
  332. <P>
  333. Below is a dump of the first section of a <CODE>G64</CODE> file, showing the offsets
  334. to the data portion for each track and half-track entry. Following that
  335. is a dump of the speed zone offsets.
  336.  
  337. </P>
  338.  
  339. <PRE>
  340. Addr  00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
  341. ----  -----------------------------------------------
  342. 0000: .. .. .. .. .. .. .. .. .. .. .. .. AC 02 00 00
  343. 0010: 00 00 00 00 A6 21 00 00 00 00 00 00 A0 40 00 00
  344. 0020: 00 00 00 00 9A 5F 00 00 00 00 00 00 94 7E 00 00
  345. 0030: 00 00 00 00 8E 9D 00 00 00 00 00 00 88 BC 00 00
  346. 0040: 00 00 00 00 82 DB 00 00 00 00 00 00 7C FA 00 00
  347. 0050: 00 00 00 00 76 19 01 00 00 00 00 00 70 38 01 00
  348. 0060: 00 00 00 00 6A 57 01 00 00 00 00 00 64 76 01 00
  349. 0070: 00 00 00 00 5E 95 01 00 00 00 00 00 58 B4 01 00
  350. 0080: 00 00 00 00 52 D3 01 00 00 00 00 00 4C F2 01 00
  351. 0090: 00 00 00 00 46 11 02 00 00 00 00 00 40 30 02 00
  352. 00A0: 00 00 00 00 3A 4F 02 00 00 00 00 00 34 6E 02 00
  353. 00B0: 00 00 00 00 2E 8D 02 00 00 00 00 00 28 AC 02 00
  354. 00C0: 00 00 00 00 22 CB 02 00 00 00 00 00 1C EA 02 00
  355. 00D0: 00 00 00 00 16 09 03 00 00 00 00 00 10 28 03 00
  356. 00E0: 00 00 00 00 0A 47 03 00 00 00 00 00 04 66 03 00
  357. 00F0: 00 00 00 00 FE 84 03 00 00 00 00 00 F8 A3 03 00
  358. 0100: 00 00 00 00 F2 C2 03 00 00 00 00 00 EC E1 03 00
  359. 0110: 00 00 00 00 E6 00 04 00 00 00 00 00 E0 1F 04 00
  360. 0120: 00 00 00 00 DA 3E 04 00 00 00 00 00 D4 5D 04 00
  361. 0130: 00 00 00 00 CE 7C 04 00 00 00 00 00 C8 9B 04 00
  362. 0140: 00 00 00 00 C2 BA 04 00 00 00 00 00 BC D9 04 00
  363. 0150: 00 00 00 00 B6 F8 04 00 00 00 00 00 .. .. .. ..
  364. </PRE>
  365.  
  366. <TABLE BORDER>
  367.  
  368. <TR><TD><B>Offset</B></TD>
  369.  
  370. <TD><B>Description</B></TD>
  371. </TR>
  372. <TR><TD>$000C-000F</TD>
  373.  
  374. <TD>Offset to stored track 1.0 ($000002AC, in LO/HI format, see below for more)</TD>
  375. </TR>
  376. <TR><TD>$0010-0013</TD>
  377.  
  378. <TD>Offset to stored track 1.5 ($00000000)</TD>
  379. </TR>
  380. <TR><TD>$0014-0017</TD>
  381.  
  382. <TD>Offset to stored track 2.0 ($000021A6)</TD>
  383. </TR>
  384. <TR><TD>...</TD>
  385.  
  386. </TR>
  387. <TR><TD>$0154-0157</TD>
  388.  
  389. <TD>Offset to stored track 42.0 ($0004F8B6)</TD>
  390. </TR>
  391. <TR><TD>$0158-015B</TD>
  392.  
  393. <TD>Offset to stored track 42.5 ($00000000)</TD>
  394. </TR></TABLE>
  395.  
  396.  
  397. <PRE>
  398.       00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
  399.       -----------------------------------------------
  400. 0150: .. .. .. .. .. .. .. .. .. .. .. .. 03 00 00 00
  401. 0160: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  402. 0170: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  403. 0180: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  404. 0190: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  405. 01A0: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  406. 01B0: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  407. 01C0: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  408. 01D0: 00 00 00 00 03 00 00 00 00 00 00 00 03 00 00 00
  409. 01E0: 00 00 00 00 02 00 00 00 00 00 00 00 02 00 00 00
  410. 01F0: 00 00 00 00 02 00 00 00 00 00 00 00 02 00 00 00
  411. 0200: 00 00 00 00 02 00 00 00 00 00 00 00 02 00 00 00
  412. 0210: 00 00 00 00 02 00 00 00 00 00 00 00 01 00 00 00
  413. 0220: 00 00 00 00 01 00 00 00 00 00 00 00 01 00 00 00
  414. 0230: 00 00 00 00 01 00 00 00 00 00 00 00 01 00 00 00
  415. 0240: 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00
  416. 0250: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  417. 0260: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  418. 0270: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  419. 0280: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  420. 0290: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
  421. 02A0: 00 00 00 00 00 00 00 00 00 00 00 00 .. .. .. ..
  422. </PRE>
  423.  
  424. <TABLE BORDER>
  425.  
  426. <TR><TD><B>Offset</B></TD>
  427.  
  428. <TD><B>Description</B></TD>
  429. </TR>
  430. <TR><TD>$015C-015F</TD>
  431.  
  432. <TD>Speed zone entry for track 1 ($03, in LO/HI  format, see below for more)</TD>
  433. </TR>
  434. <TR><TD>$0160-0163</TD>
  435.  
  436. <TD>Speed zone entry for track 1.5 ($03)</TD>
  437. </TR>
  438. <TR><TD>...</TD>
  439.  
  440. </TR>
  441. <TR><TD>$02A4-02A7</TD>
  442.  
  443. <TD>Speed zone entry for track 42 ($00)</TD>
  444. </TR>
  445. <TR><TD>$02A8-02AB</TD>
  446.  
  447. <TD>Speed zone entry for track 42.5 ($00)</TD>
  448. </TR></TABLE>
  449.  
  450. <P>
  451. Starting here at $02AC is the first track entry (from above, it is the
  452. first entry for track 1.0)
  453.  
  454. </P>
  455. <P>
  456. The track offsets (from above) require some explanation.  When one is
  457. set to all 0's, no track data exists for this entry.  If there is a
  458. value, it is an absolute reference into the file (starting from the
  459. beginning of the file).  From the track 1.0 entry we see it is set for
  460. $000002AC.  Going to that file offset, here is what we see...
  461.  
  462. </P>
  463.  
  464. <PRE>
  465.       00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
  466.       -----------------------------------------------
  467. 02A0: .. .. .. .. .. .. .. .. .. .. .. .. 0C 1E FF FF
  468. 02B0: FF FF FF 52 54 B5 29 4B 7A 5E 95 55 55 55 55 55
  469. 02C0: 55 55 55 55 55 55 FF FF FF FF FF 55 D4 A5 29 4A
  470. 02D0: 52 94 A5 29 4A 52 94 A5 29 4A 52 94 A5 29 4A 52
  471. </PRE>
  472.  
  473. <TABLE BORDER>
  474.  
  475. <TR><TD><B>Offset</B></TD>
  476.  
  477. <TD><B>Description</B></TD>
  478. </TR>
  479. <TR><TD>$02AC-02AD</TD>
  480.  
  481. <TD>Actual size of stored track (7692 or $1E0C, in LO/HI format)</TD>
  482. </TR>
  483. <TR><TD>$02AE-02AE+$1E0C</TD>
  484.  
  485. <TD>Track data</TD>
  486. </TR></TABLE>
  487.  
  488. <P>
  489. Following the track data is filler bytes.  In this case, there are 368
  490. bytes of unused space.  This space can contain anything, but for the
  491. sake of those wishing to compress these images for storage, they should
  492. all be set to the same value.  In the sample I used, these are all set
  493. to $FF.
  494.  
  495. </P>
  496. <P>
  497. Below is a dump of the end of the track 1.0 data area.  Note the actual
  498. track data ends at address $20B9, with the rest of the block being
  499. unused, and set to $FF.
  500.  
  501. </P>
  502.  
  503. <PRE>
  504.       00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
  505.       -----------------------------------------------
  506. 1FE0: 52 94 A5 29 4A 52 94 A5 29 4A 52 94 A5 29 4A 52
  507. 1FF0: 94 A5 29 4A 52 94 A5 29 4A 52 94 A5 29 4A 52 94
  508. 2000: A5 29 4A 52 94 A5 29 4A 52 94 A5 29 4A 52 94 A5
  509. 2010: 29 4A 52 94 A5 29 4A 52 94 A5 29 4A 52 94 A5 29
  510. 2020: 4A 52 94 A5 29 4A 52 94 A5 29 4A 52 94 A5 29 4A
  511. 2030: 55 55 55 55 55 55 FF FF FF FF FF FF FF FF FF FF
  512. 2040: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  513. 2050: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  514. 2060: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  515. 2070: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  516. 2080: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  517. 2090: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  518. 20A0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  519. 20B0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  520. 20C0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  521. 20D0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  522. 20E0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  523. 20F0: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  524. 2100: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  525. 2110: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  526. 2120: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  527. 2130: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  528. 2140: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  529. 2150: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  530. 2160: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  531. 2170: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  532. 2180: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  533. 2190: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
  534. 21A0: FF FF FF FF FF FF .. .. .. .. .. .. .. .. .. ..
  535. </PRE>
  536.  
  537. <P>
  538. The speed offset entries can be a little more complex. The 1541 has four
  539. speed zones defined, which means the drive can write data at four
  540. distinct speeds.  On a normal 1541 disk, these zones are as follows:
  541.  
  542. </P>
  543. <TABLE BORDER>
  544.  
  545. <TR><TD><B>Track Range</B></TD>
  546.  
  547. <TD><B>Speed Zone</B></TD>
  548. </TR>
  549. <TR><TD>1-17</TD>
  550.  
  551. <TD>3  (highest writing speed)</TD>
  552. </TR>
  553. <TR><TD>18-24</TD>
  554.  
  555. <TD>2</TD>
  556. </TR>
  557. <TR><TD>25-30</TD>
  558.  
  559. <TD>1</TD>
  560. </TR>
  561. <TR><TD>31 and up</TD>
  562.  
  563. <TD>0 (lowest writing speed)</TD>
  564. </TR></TABLE>
  565.  
  566. <P>
  567. Note that you can, through custom programming of the 1541, change the
  568. speed zone of any track to something different (change the 3 to a 0) and
  569. write data differently.  From the dump of the speed offset entries
  570. above, we see that all the entries are in the range of 0-3. If any entry
  571. is less than 4, this is not considered a speed offset but defines the
  572. whole track to be recorded at that one speed.
  573.  
  574. </P>
  575. <P>
  576. In the example I had, there were no offsets defined, so no speed zone
  577. dump can be shown.  However, I can define what should be there.  You
  578. will have a block of data, 1982 bytes long.  Each byte is encoded to
  579. represent the speed of 4 bytes in the track offset area, and is broken
  580. down as follows:
  581.  
  582. </P>
  583.  
  584. <PRE>
  585. Speed entry $FF:  in binary %11111111
  586.                              |'|'|'|'
  587.                              | | | |
  588.                              | | | +- 4'th byte speed (binary 11, 3 dec)
  589.                              | | +--- 3'rd byte speed (binary 11, 3 dec)
  590.                              | +----- 2'nd byte speed (binary 11, 3 dec)
  591.                              +------- 1'st byte speed (binary 11, 3 dec)
  592. </PRE>
  593.  
  594. <P>
  595. It was very smart thinking to allow for two speed zone settings, one in
  596. the offset block and another defining the speed on a per-byte basis.  If
  597. you are working with a normal disk, where each track is one constant
  598. speed, then you don't need the extra blocks of information hanging
  599. around the image, wasting space.
  600.  
  601. </P>
  602. <P>
  603. What may not be obvious is the flexibility of this format to add tracks
  604. and speed offset zones at will.  If a program decides to write a track
  605. out with varying speeds, and no speed offset exist, a new block will be
  606. created by appending it to the end of the image, and the offset pointer
  607. for that track set to point to the new block.  If a track has no offset
  608. yet, meaning it doesn't exist (like a half-track), and one needs to be
  609. added, the same procedure applies.  The location of the actual track or
  610. speed zone data is not important, meaning they do not have to be in any
  611. particular order since they are all referenced by the offsets at the
  612. beginning of the image.
  613.  
  614. </P>
  615. <P><HR><P>
  616. Go to the <A HREF="vice_1.html">first</A>, <A HREF="vice_10.html">previous</A>, <A HREF="vice_12.html">next</A>, <A HREF="vice_16.html">last</A> section, <A HREF="vice_toc.html">table of contents</A>.
  617. </BODY>
  618. </HTML>
  619.